home *** CD-ROM | disk | FTP | other *** search
/ Amiga Format CD 37 / Amiga Format CD37 (1999-02-16)(Future Publishing)(GB)(Track 1 of 3)[!][issue 1999-03].iso / +system+ / tools / expert / executive_v2.10 / executiveapi / smakefile < prev   
Makefile  |  1998-09-07  |  514b  |  25 lines

  1. #
  2. # SAS/C makefile for ExecutiveAPI/Example
  3. #
  4. # This file is public domain.
  5. #
  6. # Author: Petri Nordlund <petrin@megabaud.fi>
  7. #
  8. # $Id: smakefile 1.1 1996/09/05 23:20:18 petrin Exp petrin $
  9. #
  10.  
  11. #DEBUG     = DEBUG=SYMBOLFLUSH
  12. DEBUG     =
  13.  
  14. CFLAGS    = PARAMETERS=REGISTERS NOSTACKCHECK STRINGMERGE NOCHECKABORT \
  15.             NOMULTIPLEINCLUDES SMALLCODE SMALLDATA $(DEBUG)
  16.  
  17. Example: Example.o
  18.    sc link $(CFLAGS) Example.o
  19.  
  20. Example.o: Example.c
  21.    sc $(CFLAGS) Example.c
  22.  
  23. clean:
  24.    delete Example Example.lnk Example.o
  25.